@import url(https://fonts.googleapis.com/css2?family=Ruda&display=swap);

.paragraph {
  text-align: center;
  font-family: "Ruda", sans-serif;
  color: rgb(124, 124, 124);
  font-size: 2.5em;
  margin: 10px;
}

.fade-in {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  visibility: visible;
}

@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.paragraph-intro {
  text-align: center;
  font-family: "Ruda", sans-serif;
  color: rgb(124, 124, 124);
  font-size: 2.5em;
  margin: 10px;
  overflow: hidden;
  border-right: 0.15em solid;
  white-space: nowrap;
  animation: typewriter 4s steps(40, end) 1s 1 normal both;
}
